home *** CD-ROM | disk | FTP | other *** search
- on mouseWithin
- global theselected
- if theselected = 2 then
- sprite(81).visible = 1
- end if
- end
-
- on mouseEnter
- global theselected
- sprite(76).visible = 0
- if theselected <> 2 then
- sprite(81).visible = 0
- end if
- end
-
- on mouseLeave
- global theselected
- if theselected = 2 then
- sprite(81).visible = 1
- else
- sprite(76).visible = 1
- sprite(81).visible = 0
- end if
- end
-
- on mouseUp me
- global thetext, theimage, theselected, thecredit
- set the memberNum of sprite 87 to theimage + 1
- set the memberNum of sprite 86 to thetext + 1
- set the memberNum of sprite 194 to thetext + 1
- theselected = 2
- repeat with X = 0 to 4
- sprite(75 + X).visible = 1
- sprite(80 + X).visible = 0
- end repeat
- end
-